home *** CD-ROM | disk | FTP | other *** search
/ Animation / Animation Vol.1 (Profi ROM)(1994).iso / pvquan15 / anim.sh next >
Text File  |  1992-04-06  |  507b  |  23 lines

  1. : Usage:   anim.sh filename
  2.  
  3. : expects filename.anm and filename.dat to be present
  4. : creates then deletes filename_xxx.dat, filename_xxx.tga, filename_0.xxx
  5. :                         where xxx is in the range 0..??
  6. : creates filename.fli
  7.  
  8. makeanim $1 $1
  9. i=0
  10. echo $1_$i.dat
  11. while test -r $1_$i.dat
  12. do
  13.     pvray -i$1_$i.dat -o$1_$i.tga -l../ +a -q9 +ft -w320 -h200 -c
  14.     times
  15.     rm $1_$i.dat
  16.     i="`expr $i + 1`"
  17. done
  18. heckbert -t=1 -i=1 -s=0 -n=$i $1
  19. rm $1*.tga
  20. animfli $1 $1
  21. rm $1.[0-9]*
  22. times
  23.